home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / include / gsl / gsl_multifit.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-20  |  2.2 KB  |  80 lines

  1. /* multifit/gsl_multifit.h
  2.  * 
  3.  * Copyright (C) 2000 Brian Gough
  4.  * 
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or (at
  8.  * your option) any later version.
  9.  * 
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. #ifndef __GSL_MULTIFIT_H__
  21. #define __GSL_MULTIFIT_H__
  22.  
  23. #include <stdlib.h>
  24. #include <gsl/gsl_math.h>
  25. #include <gsl/gsl_vector.h>
  26. #include <gsl/gsl_matrix.h>
  27.  
  28. #undef __BEGIN_DECLS
  29. #undef __END_DECLS
  30. #ifdef __cplusplus
  31. # define __BEGIN_DECLS extern "C" {
  32. # define __END_DECLS }
  33. #else
  34. # define __BEGIN_DECLS /* empty */
  35. # define __END_DECLS /* empty */
  36. #endif
  37.  
  38. __BEGIN_DECLS
  39.  
  40. typedef struct 
  41. {
  42.   size_t n; /* number of observations */
  43.   size_t p; /* number of parameters */
  44.   gsl_matrix * A;
  45.   gsl_matrix * Q;
  46.   gsl_matrix * QSI;
  47.   gsl_vector * S;
  48.   gsl_vector * t;
  49.   gsl_vector * xt;
  50.   gsl_vector * D;
  51. gsl_multifit_linear_workspace;
  52.  
  53. gsl_multifit_linear_workspace *
  54. gsl_multifit_linear_alloc (size_t n, size_t p);
  55.  
  56. void
  57. gsl_multifit_linear_free (gsl_multifit_linear_workspace * work);
  58.  
  59. int
  60. gsl_multifit_linear (const gsl_matrix * X,
  61.                      const gsl_vector * y,
  62.                      gsl_vector * c,
  63.                      gsl_matrix * cov,
  64.                      double * chisq,
  65.                      gsl_multifit_linear_workspace * work);
  66.  
  67. int
  68. gsl_multifit_wlinear (const gsl_matrix * X,
  69.                       const gsl_vector * w,
  70.                       const gsl_vector * y,
  71.                       gsl_vector * c,
  72.                       gsl_matrix * cov,
  73.                       double * chisq,
  74.                       gsl_multifit_linear_workspace * work);
  75.  
  76. __END_DECLS
  77.  
  78. #endif /* __GSL_MULTIFIT_H__ */
  79.